Class InsuranceTypeService
Inheritance
System.Object
InsuranceTypeService
Implements
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Simplic.PlugIn.Logistics
Assembly: Simplic.PlugIn.Logistics.dll
Syntax
public class InsuranceTypeService : IInsuranceTypeService, IInsuranceTypeRepository
Constructors
| Improve this Doc View SourceInsuranceTypeService(IInsuranceTypeRepository)
Declaration
public InsuranceTypeService(IInsuranceTypeRepository insuranceTypeRepository)
Parameters
Type | Name | Description |
---|---|---|
IInsuranceTypeRepository | insuranceTypeRepository |
Methods
| Improve this Doc View SourceDelete(InsuranceType)
Declaration
public bool Delete(InsuranceType obj)
Parameters
Type | Name | Description |
---|---|---|
InsuranceType | obj |
Returns
Type | Description |
---|---|
System.Boolean |
Delete(Guid)
Declaration
public bool Delete(Guid id)
Parameters
Type | Name | Description |
---|---|---|
System.Guid | id |
Returns
Type | Description |
---|---|
System.Boolean |
Get(Guid)
Declaration
public InsuranceType Get(Guid id)
Parameters
Type | Name | Description |
---|---|---|
System.Guid | id |
Returns
Type | Description |
---|---|
InsuranceType |
GetAll()
Declaration
public IEnumerable<InsuranceType> GetAll()
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<InsuranceType> |
Save(InsuranceType)
Declaration
public bool Save(InsuranceType obj)
Parameters
Type | Name | Description |
---|---|---|
InsuranceType | obj |
Returns
Type | Description |
---|---|
System.Boolean |
Implements
IRepositoryBase<, >