public Dictionary <long, IList <DocumentTypeMaster> > GetDocumentTypeMasterListWithPagingAndCriteria(int?page, int?pageSize, string sortby, string sortType, Dictionary <string, object> criteria)
 {
     try
     {
         MastersBC documenttypeBC = new MastersBC();
         return(documenttypeBC.GetDocumentTypeMasterListWithPagingAndCriteria(page, pageSize, sortby, sortType, criteria));
     }
     catch (Exception)
     {
         throw;
     }
 }