diff --git a/server/AyaNova/models/Contract.cs b/server/AyaNova/models/Contract.cs index 985d342a..59a7b1aa 100644 --- a/server/AyaNova/models/Contract.cs +++ b/server/AyaNova/models/Contract.cs @@ -7,7 +7,7 @@ namespace AyaNova.Models //NOTE: Any non required field (nullable in DB) sb nullable here, i.e. decimal? not decimal, //otherwise the server will call it an invalid record if the field isn't sent from client - public partial class Contract + public class Contract { public long Id { get; set; } public uint ConcurrencyToken { get; set; } diff --git a/server/AyaNova/models/Customer.cs b/server/AyaNova/models/Customer.cs index 0a61c8cd..3f6d0271 100644 --- a/server/AyaNova/models/Customer.cs +++ b/server/AyaNova/models/Customer.cs @@ -9,7 +9,7 @@ namespace AyaNova.Models //NOTE: Any non required field (nullable in DB) sb nullable here, i.e. decimal? not decimal, //otherwise the server will call it an invalid record if the field isn't sent from client - public partial class Customer + public class Customer { public long Id { get; set; } public uint ConcurrencyToken { get; set; } diff --git a/server/AyaNova/models/DataListView.cs b/server/AyaNova/models/DataListView.cs index ef48fe38..e547bd2b 100644 --- a/server/AyaNova/models/DataListView.cs +++ b/server/AyaNova/models/DataListView.cs @@ -4,7 +4,7 @@ using System.ComponentModel.DataAnnotations; namespace AyaNova.Models { - public partial class DataListView + public class DataListView { public long Id { get; set; } public uint ConcurrencyToken { get; set; } diff --git a/server/AyaNova/models/Event.cs b/server/AyaNova/models/Event.cs index a6b94d52..29864901 100644 --- a/server/AyaNova/models/Event.cs +++ b/server/AyaNova/models/Event.cs @@ -8,7 +8,7 @@ namespace AyaNova.Models /// /// Event log entry /// - public partial class Event + public class Event { public long Id { get; set; } public uint ConcurrencyToken { get; set; } diff --git a/server/AyaNova/models/FileAttachment.cs b/server/AyaNova/models/FileAttachment.cs index e89f1379..08ed9848 100644 --- a/server/AyaNova/models/FileAttachment.cs +++ b/server/AyaNova/models/FileAttachment.cs @@ -5,7 +5,7 @@ using System.ComponentModel.DataAnnotations; namespace AyaNova.Models { - public partial class FileAttachment + public class FileAttachment { public long Id { get; set; } public uint ConcurrencyToken { get; set; } diff --git a/server/AyaNova/models/FormCustom.cs b/server/AyaNova/models/FormCustom.cs index 2dce856f..7cf7ab97 100644 --- a/server/AyaNova/models/FormCustom.cs +++ b/server/AyaNova/models/FormCustom.cs @@ -14,7 +14,7 @@ namespace AyaNova.Models - e.g.: [{fld:"ltkeyfieldname",hide:"true/false",required:"true/false", type:"bool"},{fld:"ltkeyfieldname",hide:"true/false",required:"true/false", type:"text"] */ - public partial class FormCustom + public class FormCustom { public long Id { get; set; } public uint ConcurrencyToken { get; set; } diff --git a/server/AyaNova/models/GlobalBizSettings.cs b/server/AyaNova/models/GlobalBizSettings.cs index ff0a244f..de861aa6 100644 --- a/server/AyaNova/models/GlobalBizSettings.cs +++ b/server/AyaNova/models/GlobalBizSettings.cs @@ -3,7 +3,7 @@ using Newtonsoft.Json; namespace AyaNova.Models { - public partial class GlobalBizSettings + public class GlobalBizSettings { public long Id { get; set; }//this is always 1 as there is only ever one single global biz object public uint ConcurrencyToken { get; set; } diff --git a/server/AyaNova/models/HeadOffice.cs b/server/AyaNova/models/HeadOffice.cs index 181a6ab1..9480861e 100644 --- a/server/AyaNova/models/HeadOffice.cs +++ b/server/AyaNova/models/HeadOffice.cs @@ -9,7 +9,7 @@ namespace AyaNova.Models //NOTE: Any non required field (nullable in DB) sb nullable here, i.e. decimal? not decimal, //otherwise the server will call it an invalid record if the field isn't sent from client - public partial class HeadOffice + public class HeadOffice { public long Id { get; set; } public uint ConcurrencyToken { get; set; } diff --git a/server/AyaNova/models/License.cs b/server/AyaNova/models/License.cs index f2af1c93..10f7de31 100644 --- a/server/AyaNova/models/License.cs +++ b/server/AyaNova/models/License.cs @@ -3,7 +3,7 @@ using System; namespace AyaNova.Models { - public partial class License + public class License { public long Id { get; set; } public string Key { get; set; } diff --git a/server/AyaNova/models/LoanUnit.cs b/server/AyaNova/models/LoanUnit.cs index 046b1ca8..6a89824c 100644 --- a/server/AyaNova/models/LoanUnit.cs +++ b/server/AyaNova/models/LoanUnit.cs @@ -9,7 +9,7 @@ namespace AyaNova.Models //NOTE: Any non required field (nullable in DB) sb nullable here, i.e. decimal? not decimal, //otherwise the server will call it an invalid record if the field isn't sent from client - public partial class LoanUnit + public class LoanUnit { public long Id { get; set; } public uint ConcurrencyToken { get; set; } diff --git a/server/AyaNova/models/OpsJob.cs b/server/AyaNova/models/OpsJob.cs index 32d61258..6edafd15 100644 --- a/server/AyaNova/models/OpsJob.cs +++ b/server/AyaNova/models/OpsJob.cs @@ -8,7 +8,7 @@ namespace AyaNova.Models /// /// Operations job /// - public partial class OpsJob + public class OpsJob { [Key] public Guid GId { get; set; } diff --git a/server/AyaNova/models/OpsJobLog.cs b/server/AyaNova/models/OpsJobLog.cs index eaebd9b0..d67f272d 100644 --- a/server/AyaNova/models/OpsJobLog.cs +++ b/server/AyaNova/models/OpsJobLog.cs @@ -8,7 +8,7 @@ namespace AyaNova.Models /// /// Operations job log /// - public partial class OpsJobLog + public class OpsJobLog { [Key] public Guid GId { get; set; } diff --git a/server/AyaNova/models/PM.cs b/server/AyaNova/models/PM.cs index 5a1b2eda..399fd6bd 100644 --- a/server/AyaNova/models/PM.cs +++ b/server/AyaNova/models/PM.cs @@ -9,7 +9,7 @@ namespace AyaNova.Models //NOTE: Any non required field (nullable in DB) sb nullable here, i.e. decimal? not decimal, //otherwise the server will call it an invalid record if the field isn't sent from client - public partial class PM + public class PM { public long Id { get; set; } public uint ConcurrencyToken { get; set; } diff --git a/server/AyaNova/models/PMItem.cs b/server/AyaNova/models/PMItem.cs index 747fa713..28775699 100644 --- a/server/AyaNova/models/PMItem.cs +++ b/server/AyaNova/models/PMItem.cs @@ -8,7 +8,7 @@ namespace AyaNova.Models //NOTE: Any non required field (nullable in DB) sb nullable here, i.e. decimal? not decimal, //otherwise the server will call it an invalid record if the field isn't sent from client - public partial class PMItem + public class PMItem { public long Id { get; set; } public uint ConcurrencyToken { get; set; } diff --git a/server/AyaNova/models/PMTemplate.cs b/server/AyaNova/models/PMTemplate.cs index 8bc4c631..890afc0a 100644 --- a/server/AyaNova/models/PMTemplate.cs +++ b/server/AyaNova/models/PMTemplate.cs @@ -9,7 +9,7 @@ namespace AyaNova.Models //NOTE: Any non required field (nullable in DB) sb nullable here, i.e. decimal? not decimal, //otherwise the server will call it an invalid record if the field isn't sent from client - public partial class PMTemplate + public class PMTemplate { public long Id { get; set; } public uint ConcurrencyToken { get; set; } diff --git a/server/AyaNova/models/PMTemplateItem.cs b/server/AyaNova/models/PMTemplateItem.cs index 0c7ce49b..6509901d 100644 --- a/server/AyaNova/models/PMTemplateItem.cs +++ b/server/AyaNova/models/PMTemplateItem.cs @@ -9,7 +9,7 @@ namespace AyaNova.Models //NOTE: Any non required field (nullable in DB) sb nullable here, i.e. decimal? not decimal, //otherwise the server will call it an invalid record if the field isn't sent from client - public partial class PMTemplateItem + public class PMTemplateItem { public long Id { get; set; } public uint ConcurrencyToken { get; set; } diff --git a/server/AyaNova/models/Part.cs b/server/AyaNova/models/Part.cs index cd8d121b..bc5af455 100644 --- a/server/AyaNova/models/Part.cs +++ b/server/AyaNova/models/Part.cs @@ -9,7 +9,7 @@ namespace AyaNova.Models //NOTE: Any non required field (nullable in DB) sb nullable here, i.e. decimal? not decimal, //otherwise the server will call it an invalid record if the field isn't sent from client - public partial class Part + public class Part { public long Id { get; set; } public uint ConcurrencyToken { get; set; } diff --git a/server/AyaNova/models/PickListTemplate.cs b/server/AyaNova/models/PickListTemplate.cs index fd1491fb..1a748747 100644 --- a/server/AyaNova/models/PickListTemplate.cs +++ b/server/AyaNova/models/PickListTemplate.cs @@ -4,7 +4,7 @@ namespace AyaNova.Models { //See core-picklist-autocomplete-template-system.txt for details - public partial class PickListTemplate + public class PickListTemplate { public long Id { get; set; } public uint ConcurrencyToken { get; set; } diff --git a/server/AyaNova/models/Project.cs b/server/AyaNova/models/Project.cs index 3332cc6e..99eb210a 100644 --- a/server/AyaNova/models/Project.cs +++ b/server/AyaNova/models/Project.cs @@ -9,7 +9,7 @@ namespace AyaNova.Models //NOTE: Any non required field (nullable in DB) sb nullable here, i.e. decimal? not decimal, //otherwise the server will call it an invalid record if the field isn't sent from client - public partial class Project + public class Project { public long Id { get; set; } public uint ConcurrencyToken { get; set; } diff --git a/server/AyaNova/models/PurchaseOrder.cs b/server/AyaNova/models/PurchaseOrder.cs index 5907ed5c..4650692e 100644 --- a/server/AyaNova/models/PurchaseOrder.cs +++ b/server/AyaNova/models/PurchaseOrder.cs @@ -9,7 +9,7 @@ namespace AyaNova.Models //NOTE: Any non required field (nullable in DB) sb nullable here, i.e. decimal? not decimal, //otherwise the server will call it an invalid record if the field isn't sent from client - public partial class PurchaseOrder + public class PurchaseOrder { public long Id { get; set; } public uint ConcurrencyToken { get; set; } diff --git a/server/AyaNova/models/Quote.cs b/server/AyaNova/models/Quote.cs index f77faa5c..221d0fd6 100644 --- a/server/AyaNova/models/Quote.cs +++ b/server/AyaNova/models/Quote.cs @@ -8,7 +8,7 @@ namespace AyaNova.Models //NOTE: Any non required field (nullable in DB) sb nullable here, i.e. decimal? not decimal, //otherwise the server will call it an invalid record if the field isn't sent from client - public partial class Quote + public class Quote { public long Id { get; set; } public uint ConcurrencyToken { get; set; } diff --git a/server/AyaNova/models/QuoteItem.cs b/server/AyaNova/models/QuoteItem.cs index 857d61b9..88903d95 100644 --- a/server/AyaNova/models/QuoteItem.cs +++ b/server/AyaNova/models/QuoteItem.cs @@ -8,7 +8,7 @@ namespace AyaNova.Models //NOTE: Any non required field (nullable in DB) sb nullable here, i.e. decimal? not decimal, //otherwise the server will call it an invalid record if the field isn't sent from client - public partial class QuoteItem + public class QuoteItem { public long Id { get; set; } public uint ConcurrencyToken { get; set; } diff --git a/server/AyaNova/models/QuoteTemplate.cs b/server/AyaNova/models/QuoteTemplate.cs index bc20559f..02f74a9e 100644 --- a/server/AyaNova/models/QuoteTemplate.cs +++ b/server/AyaNova/models/QuoteTemplate.cs @@ -9,7 +9,7 @@ namespace AyaNova.Models //NOTE: Any non required field (nullable in DB) sb nullable here, i.e. decimal? not decimal, //otherwise the server will call it an invalid record if the field isn't sent from client - public partial class QuoteTemplate + public class QuoteTemplate { public long Id { get; set; } public uint ConcurrencyToken { get; set; } diff --git a/server/AyaNova/models/QuoteTemplateItem.cs b/server/AyaNova/models/QuoteTemplateItem.cs index 2bd4d46c..9a70aaf9 100644 --- a/server/AyaNova/models/QuoteTemplateItem.cs +++ b/server/AyaNova/models/QuoteTemplateItem.cs @@ -9,7 +9,7 @@ namespace AyaNova.Models //NOTE: Any non required field (nullable in DB) sb nullable here, i.e. decimal? not decimal, //otherwise the server will call it an invalid record if the field isn't sent from client - public partial class QuoteTemplateItem + public class QuoteTemplateItem { public long Id { get; set; } public uint ConcurrencyToken { get; set; } diff --git a/server/AyaNova/models/SearchDictionary.cs b/server/AyaNova/models/SearchDictionary.cs index 597be82f..7c5c1a3e 100644 --- a/server/AyaNova/models/SearchDictionary.cs +++ b/server/AyaNova/models/SearchDictionary.cs @@ -3,7 +3,7 @@ using System.ComponentModel.DataAnnotations; namespace AyaNova.Models { - public partial class SearchDictionary + public class SearchDictionary { public long Id { get; set; } public uint ConcurrencyToken { get; set; } diff --git a/server/AyaNova/models/SearchKey.cs b/server/AyaNova/models/SearchKey.cs index c9c5c6ef..c4ce3d58 100644 --- a/server/AyaNova/models/SearchKey.cs +++ b/server/AyaNova/models/SearchKey.cs @@ -5,7 +5,7 @@ using System.ComponentModel.DataAnnotations; namespace AyaNova.Models { - public partial class SearchKey + public class SearchKey { public long Id { get; set; } public uint ConcurrencyToken { get; set; } diff --git a/server/AyaNova/models/Tag.cs b/server/AyaNova/models/Tag.cs index ca60df5a..26beb629 100644 --- a/server/AyaNova/models/Tag.cs +++ b/server/AyaNova/models/Tag.cs @@ -3,7 +3,7 @@ using System.ComponentModel.DataAnnotations; namespace AyaNova.Models { - public partial class Tag + public class Tag { public long Id { get; set; } public uint ConcurrencyToken { get; set; } diff --git a/server/AyaNova/models/Translation.cs b/server/AyaNova/models/Translation.cs index e8484ad2..a09dc04f 100644 --- a/server/AyaNova/models/Translation.cs +++ b/server/AyaNova/models/Translation.cs @@ -5,9 +5,8 @@ using System.ComponentModel.DataAnnotations; using Newtonsoft.Json; namespace AyaNova.Models -{ - // [JsonObject(IsReference = true)] - public partial class Translation +{ + public class Translation { public long Id { get; set; } public uint ConcurrencyToken { get; set; } diff --git a/server/AyaNova/models/TranslationItem.cs b/server/AyaNova/models/TranslationItem.cs index 2be1da17..125384c9 100644 --- a/server/AyaNova/models/TranslationItem.cs +++ b/server/AyaNova/models/TranslationItem.cs @@ -9,7 +9,7 @@ using Newtonsoft.Json; namespace AyaNova.Models { - public partial class TranslationItem + public class TranslationItem { public long Id { get; set; } public uint ConcurrencyToken { get; set; } diff --git a/server/AyaNova/models/Unit.cs b/server/AyaNova/models/Unit.cs index c453a5c1..4cb23e54 100644 --- a/server/AyaNova/models/Unit.cs +++ b/server/AyaNova/models/Unit.cs @@ -9,7 +9,7 @@ namespace AyaNova.Models //NOTE: Any non required field (nullable in DB) sb nullable here, i.e. decimal? not decimal, //otherwise the server will call it an invalid record if the field isn't sent from client - public partial class Unit + public class Unit { public long Id { get; set; } public uint ConcurrencyToken { get; set; } diff --git a/server/AyaNova/models/UnitModel.cs b/server/AyaNova/models/UnitModel.cs index 4a692dcf..4cc66e91 100644 --- a/server/AyaNova/models/UnitModel.cs +++ b/server/AyaNova/models/UnitModel.cs @@ -9,7 +9,7 @@ namespace AyaNova.Models //NOTE: Any non required field (nullable in DB) sb nullable here, i.e. decimal? not decimal, //otherwise the server will call it an invalid record if the field isn't sent from client - public partial class UnitModel + public class UnitModel { public long Id { get; set; } public uint ConcurrencyToken { get; set; } diff --git a/server/AyaNova/models/User.cs b/server/AyaNova/models/User.cs index ea7dc015..2325fe52 100644 --- a/server/AyaNova/models/User.cs +++ b/server/AyaNova/models/User.cs @@ -6,7 +6,7 @@ using Newtonsoft.Json; namespace AyaNova.Models { - public partial class User + public class User { public long Id { get; set; } public uint ConcurrencyToken { get; set; } diff --git a/server/AyaNova/models/UserOptions.cs b/server/AyaNova/models/UserOptions.cs index 8b27d84d..0af126d1 100644 --- a/server/AyaNova/models/UserOptions.cs +++ b/server/AyaNova/models/UserOptions.cs @@ -3,7 +3,7 @@ using Newtonsoft.Json; namespace AyaNova.Models { - public partial class UserOptions + public class UserOptions { public long Id { get; set; } public uint ConcurrencyToken { get; set; } diff --git a/server/AyaNova/models/Vendor.cs b/server/AyaNova/models/Vendor.cs index b089c5b4..fcbec98a 100644 --- a/server/AyaNova/models/Vendor.cs +++ b/server/AyaNova/models/Vendor.cs @@ -9,7 +9,7 @@ namespace AyaNova.Models //NOTE: Any non required field (nullable in DB) sb nullable here, i.e. decimal? not decimal, //otherwise the server will call it an invalid record if the field isn't sent from client - public partial class Vendor + public class Vendor { public long Id { get; set; } public uint ConcurrencyToken { get; set; } diff --git a/server/AyaNova/models/Widget.cs b/server/AyaNova/models/Widget.cs index 52344d98..d843732d 100644 --- a/server/AyaNova/models/Widget.cs +++ b/server/AyaNova/models/Widget.cs @@ -9,7 +9,7 @@ namespace AyaNova.Models //NOTE: Any non required field (nullable in DB) sb nullable here, i.e. decimal? not decimal, otherwise the server will call it an invalid record if the field isn't sent from client //NOTE: In Widget DB schema only name and serial are not nullable - public partial class Widget + public class Widget { public long Id { get; set; } public uint ConcurrencyToken { get; set; } diff --git a/server/AyaNova/models/WorkOrder.cs b/server/AyaNova/models/WorkOrder.cs index 5559802c..808f5888 100644 --- a/server/AyaNova/models/WorkOrder.cs +++ b/server/AyaNova/models/WorkOrder.cs @@ -7,31 +7,31 @@ namespace AyaNova.Models { //NOTE: Any non required field (nullable in DB) sb nullable here, i.e. decimal? not decimal, //otherwise the server will call it an invalid record if the field isn't sent from client - - public partial class WorkOrder + + public class WorkOrder { public long Id { get; set; } public uint ConcurrencyToken { get; set; } [Required] - public uint Serial { get; set; } - public bool Active { get; set; } - public string Notes { get; set; } - public string Wiki {get;set;} + public uint Serial { get; set; } + public bool Active { get; set; } + public string Notes { get; set; } + public string Wiki { get; set; } public string CustomFields { get; set; } public List Tags { get; set; } - + //dependents public List WorkorderItems { get; set; } public WorkOrder() { Tags = new List(); - WorkorderItems=new List(); + WorkorderItems = new List(); } - //Not persisted business properties + //Not persisted business properties // //NOTE: this could be a common class applied to everything for common biz rule stuff // //i.e. specific rights in situations based on rules, like candelete, canedit etc // [NotMapped] diff --git a/server/AyaNova/models/WorkOrderItem.cs b/server/AyaNova/models/WorkOrderItem.cs index 12bd7fcd..48957546 100644 --- a/server/AyaNova/models/WorkOrderItem.cs +++ b/server/AyaNova/models/WorkOrderItem.cs @@ -7,8 +7,8 @@ namespace AyaNova.Models { //NOTE: Any non required field (nullable in DB) sb nullable here, i.e. decimal? not decimal, //otherwise the server will call it an invalid record if the field isn't sent from client - - public partial class WorkOrderItem + + public class WorkOrderItem { public long Id { get; set; } public uint ConcurrencyToken { get; set; } diff --git a/server/AyaNova/models/WorkOrderItemLabor.cs b/server/AyaNova/models/WorkOrderItemLabor.cs index b4d072d8..d83c9f87 100644 --- a/server/AyaNova/models/WorkOrderItemLabor.cs +++ b/server/AyaNova/models/WorkOrderItemLabor.cs @@ -8,7 +8,7 @@ namespace AyaNova.Models //NOTE: Any non required field (nullable in DB) sb nullable here, i.e. decimal? not decimal, //otherwise the server will call it an invalid record if the field isn't sent from client - public partial class WorkOrderItemLabor + public class WorkOrderItemLabor { public long Id { get; set; } public uint ConcurrencyToken { get; set; } diff --git a/server/AyaNova/models/WorkOrderItemPart.cs b/server/AyaNova/models/WorkOrderItemPart.cs index ccbf2b3d..b00d368b 100644 --- a/server/AyaNova/models/WorkOrderItemPart.cs +++ b/server/AyaNova/models/WorkOrderItemPart.cs @@ -8,7 +8,7 @@ namespace AyaNova.Models //NOTE: Any non required field (nullable in DB) sb nullable here, i.e. decimal? not decimal, //otherwise the server will call it an invalid record if the field isn't sent from client - public partial class WorkOrderItemPart + public class WorkOrderItemPart { public long Id { get; set; } public uint ConcurrencyToken { get; set; } diff --git a/server/AyaNova/models/WorkOrderTemplate.cs b/server/AyaNova/models/WorkOrderTemplate.cs index 0c36ee22..08ae7940 100644 --- a/server/AyaNova/models/WorkOrderTemplate.cs +++ b/server/AyaNova/models/WorkOrderTemplate.cs @@ -9,7 +9,7 @@ namespace AyaNova.Models //NOTE: Any non required field (nullable in DB) sb nullable here, i.e. decimal? not decimal, //otherwise the server will call it an invalid record if the field isn't sent from client - public partial class WorkOrderTemplate + public class WorkOrderTemplate { public long Id { get; set; } public uint ConcurrencyToken { get; set; } diff --git a/server/AyaNova/models/WorkOrderTemplateItem.cs b/server/AyaNova/models/WorkOrderTemplateItem.cs index 80a13f2f..edc5a9c4 100644 --- a/server/AyaNova/models/WorkOrderTemplateItem.cs +++ b/server/AyaNova/models/WorkOrderTemplateItem.cs @@ -9,7 +9,7 @@ namespace AyaNova.Models //NOTE: Any non required field (nullable in DB) sb nullable here, i.e. decimal? not decimal, //otherwise the server will call it an invalid record if the field isn't sent from client - public partial class WorkOrderTemplateItem + public class WorkOrderTemplateItem { public long Id { get; set; } public uint ConcurrencyToken { get; set; } diff --git a/server/AyaNova/models/dto/NameIdActiveItem.cs b/server/AyaNova/models/dto/NameIdActiveItem.cs index b132e2e9..5f7e5b1b 100644 --- a/server/AyaNova/models/dto/NameIdActiveItem.cs +++ b/server/AyaNova/models/dto/NameIdActiveItem.cs @@ -1,7 +1,7 @@ namespace AyaNova.Models { - public partial class NameIdActiveItem + public class NameIdActiveItem { public long Id { get; set; } public string Name { get; set; } diff --git a/server/AyaNova/models/dto/NameIdItem.cs b/server/AyaNova/models/dto/NameIdItem.cs index 6a98cba3..5ece6f76 100644 --- a/server/AyaNova/models/dto/NameIdItem.cs +++ b/server/AyaNova/models/dto/NameIdItem.cs @@ -1,7 +1,7 @@ namespace AyaNova.Models { - public partial class NameIdItem + public class NameIdItem { public long Id { get; set; } public string Name { get; set; } diff --git a/server/AyaNova/models/dto/NameItem.cs b/server/AyaNova/models/dto/NameItem.cs index 77b16a12..9c96ddcd 100644 --- a/server/AyaNova/models/dto/NameItem.cs +++ b/server/AyaNova/models/dto/NameItem.cs @@ -4,7 +4,7 @@ namespace AyaNova.Models /// /// Dto object for name only parameters in routes /// - public partial class NameItem + public class NameItem { public string Name { get; set; } } diff --git a/server/AyaNova/models/dto/NewTextIdConcurrencyTokenItem.cs b/server/AyaNova/models/dto/NewTextIdConcurrencyTokenItem.cs index 1f684ca3..20bb7cc8 100644 --- a/server/AyaNova/models/dto/NewTextIdConcurrencyTokenItem.cs +++ b/server/AyaNova/models/dto/NewTextIdConcurrencyTokenItem.cs @@ -1,7 +1,7 @@ namespace AyaNova.Models { - public partial class NewTextIdConcurrencyTokenItem + public class NewTextIdConcurrencyTokenItem { public long Id { get; set; } public string NewText { get; set; }