AnneeFactory.cs 345 B

123456789101112131415
  1. using CD67.FicheCollege.Entity;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Data.Entity;
  7. namespace CD67.FicheCollege.Factory
  8. {
  9. public partial class AnneeFactory : Internal.BaseFactory<Entity.Annee>
  10. {
  11. public AnneeFactory(Entities dbContext) : base(dbContext) { }
  12. }
  13. }