WebAPI Layers controller fix
This commit is contained in:
@@ -397,7 +397,7 @@ namespace WebAPI.Controllers
|
||||
});
|
||||
|
||||
}
|
||||
public Layer AddLayer(Layer input, Guid currentUserId)
|
||||
internal Layer AddLayer(Layer input, Guid currentUserId)
|
||||
{
|
||||
input.CreatedById = currentUserId;
|
||||
input.ModifiedById = currentUserId;
|
||||
@@ -408,8 +408,7 @@ namespace WebAPI.Controllers
|
||||
db.SaveChanges();
|
||||
return input;
|
||||
}
|
||||
|
||||
public void SaveRecords(Guid id, ICollection<Record> records, Guid currentUserId)
|
||||
internal void SaveRecords(Guid id, ICollection<Record> records, Guid currentUserId)
|
||||
{
|
||||
try
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user