Business objects

We will create a separate folder for BusinessObjects inside the common layer. BusinessObjects are classes that are composite entities or business models and contain properties to carry data for a specific business model. The following is a sample TenantServiceRequest business object:

    public class TenantServiceRequest : BaseEntity 
{
public string Description { get; set; }
public string EmployeeComments { get; set; }
public string Status { get; set; }

public long TenantID { get; set; }
public string TenantName { get; set; }
public string Email { get; set; }
public string Phone { get; set; }
}
..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
3.139.83.151