This commit is contained in:
2020-05-16 14:51:40 +00:00
parent 1259e8c254
commit e82405d07f
3 changed files with 11 additions and 6 deletions

View File

@@ -107,7 +107,7 @@ namespace AyaNova.Biz
// //
internal async Task<PM> DuplicateAsync(PM dbObj) internal async Task<PM> DuplicateAsync(PM dbObj)
{ { await Task.CompletedTask;
throw new System.NotImplementedException("STUB: WORKORDER DUPLICATE"); throw new System.NotImplementedException("STUB: WORKORDER DUPLICATE");
// PM outObj = new PM(); // PM outObj = new PM();
// CopyObject.Copy(dbObj, outObj, "Wiki"); // CopyObject.Copy(dbObj, outObj, "Wiki");
@@ -207,7 +207,7 @@ namespace AyaNova.Biz
//DELETE //DELETE
// //
internal async Task<bool> DeleteAsync(PM dbObj) internal async Task<bool> DeleteAsync(PM dbObj)
{ { await Task.CompletedTask;
throw new System.NotImplementedException("STUB: WORKORDER DELETE"); throw new System.NotImplementedException("STUB: WORKORDER DELETE");
//Determine if the object can be deleted, do the deletion tentatively //Determine if the object can be deleted, do the deletion tentatively
//Probably also in here deal with tags and associated search text etc //Probably also in here deal with tags and associated search text etc

View File

@@ -107,6 +107,7 @@ namespace AyaNova.Biz
internal async Task<Quote> DuplicateAsync(Quote dbObj) internal async Task<Quote> DuplicateAsync(Quote dbObj)
{ {
await Task.CompletedTask;
throw new System.NotImplementedException("STUB: WORKORDER DUPLICATE"); throw new System.NotImplementedException("STUB: WORKORDER DUPLICATE");
// Quote outObj = new Quote(); // Quote outObj = new Quote();
// CopyObject.Copy(dbObj, outObj, "Wiki"); // CopyObject.Copy(dbObj, outObj, "Wiki");
@@ -207,6 +208,7 @@ namespace AyaNova.Biz
// //
internal async Task<bool> DeleteAsync(Quote dbObj) internal async Task<bool> DeleteAsync(Quote dbObj)
{ {
await Task.CompletedTask;
throw new System.NotImplementedException("STUB: WORKORDER DELETE"); throw new System.NotImplementedException("STUB: WORKORDER DELETE");
//Determine if the object can be deleted, do the deletion tentatively //Determine if the object can be deleted, do the deletion tentatively
//Probably also in here deal with tags and associated search text etc //Probably also in here deal with tags and associated search text etc

View File

@@ -219,12 +219,13 @@ namespace AyaNova.Biz
{ {
//todo iterate the object in question, open and update and save each one through it's biz object interface so rules etc are all maintained //todo iterate the object in question, open and update and save each one through it's biz object interface so rules etc are all maintained
//not sure if should update locked or read only objects, probably not I guess as it should only do whatever was done in interface //not sure if should update locked or read only objects, probably not I guess as it should only do whatever was done in interface
await Task.CompletedTask;
throw new System.NotImplementedException("NOT IMPLEMENTED YET"); throw new System.NotImplementedException("NOT IMPLEMENTED YET");
} }
public static async Task<long> BulkAddAny(AyaType ayaType, string tag, AyContext ct) public static async Task<long> BulkAddAny(AyaType ayaType, string tag, AyContext ct)
{ {
await Task.CompletedTask;
throw new System.NotImplementedException("NOT IMPLEMENTED YET"); throw new System.NotImplementedException("NOT IMPLEMENTED YET");
} }
@@ -233,12 +234,13 @@ namespace AyaNova.Biz
{ {
//todo iterate the object in question, open and update and save each one through it's biz object interface so rules etc are all maintained //todo iterate the object in question, open and update and save each one through it's biz object interface so rules etc are all maintained
//not sure if should update locked or read only objects, probably not I guess as it should only do whatever was done in interface //not sure if should update locked or read only objects, probably not I guess as it should only do whatever was done in interface
await Task.CompletedTask;
throw new System.NotImplementedException("NOT IMPLEMENTED YET"); throw new System.NotImplementedException("NOT IMPLEMENTED YET");
} }
public static async Task<long> BulkRemoveAny(AyaType ayaType, string tag, AyContext ct) public static async Task<long> BulkRemoveAny(AyaType ayaType, string tag, AyContext ct)
{ {
await Task.CompletedTask;
throw new System.NotImplementedException("NOT IMPLEMENTED YET"); throw new System.NotImplementedException("NOT IMPLEMENTED YET");
} }
@@ -247,12 +249,13 @@ namespace AyaNova.Biz
{ {
//todo iterate the object in question, open and update and save each one through it's biz object interface so rules etc are all maintained //todo iterate the object in question, open and update and save each one through it's biz object interface so rules etc are all maintained
//not sure if should update locked or read only objects, probably not I guess as it should only do whatever was done in interface //not sure if should update locked or read only objects, probably not I guess as it should only do whatever was done in interface
await Task.CompletedTask;
throw new System.NotImplementedException("NOT IMPLEMENTED YET"); throw new System.NotImplementedException("NOT IMPLEMENTED YET");
} }
public static async Task<long> BulkReplaceAny(AyaType ayaType, string fromTag, string toTag, AyContext ct) public static async Task<long> BulkReplaceAny(AyaType ayaType, string fromTag, string toTag, AyContext ct)
{ {
await Task.CompletedTask;
throw new System.NotImplementedException("NOT IMPLEMENTED YET"); throw new System.NotImplementedException("NOT IMPLEMENTED YET");
} }