public PrintType GetPrintTypeById(int id)
        {
            IPrintTypeDB      printTypeDb      = new PrintTypeDB();
            IPrintTypeManager printTypeManager = new PrintTypeManager(printTypeDb);

            return(printTypeManager.GetPrintTypeById(id));
        }
        public List <PrintType> GetAllPrintType()
        {
            IPrintTypeDB      printTypeDb      = new PrintTypeDB();
            IPrintTypeManager printTypeManager = new PrintTypeManager(printTypeDb);

            return(printTypeManager.GetAllPrintType());
        }