private void ShowCostingForm(JewelItemCategory type)
 {
     frmCostingBase.MetalType = type;
     ShowManagedForm <frmCostingBase>(this);
 }
 public List <ConfigurationMaster> GetAllConfigurations(JewelItemCategory type)
 {
     return(DbContext.ConfigurationMasters.Where(x => x.JewelItemCategory_Enum == (short)type && x.Active).ToList());
 }